home *** CD-ROM | disk | FTP | other *** search
/ Games of Daze / Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso / x2ftp / msdos / libs / netclb23 / sync.h < prev    next >
C/C++ Source or Header  |  1994-05-20  |  543b  |  17 lines

  1. #ifndef SYNC_H
  2. #define SYNC_H
  3.  
  4. /***************************************/
  5. /* Synchronisation Services prototypes */
  6. /***************************************/
  7.  
  8. int CloseSemaphore( long semaphoreHandle );
  9. int ExamineSemaphore( long semaphoreHandle,int *semaphoreValue,
  10.     word *openCount);
  11. int OpenSemaphore( char *semaphoreName,int initialValue,long *semaphoreHandle,
  12.     word *openCount);
  13. int SignalSemaphore( long semaphoreHandle );
  14. int WaitOnSemaphore( long semaphoreHandle , int timeoutLimit );
  15.                      
  16. #endif
  17.